home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global mystore
- if (word 1 of the text of cast "storelocation" <> "no") and (word 1 of the text of cast "storelocation" <> "rollover") then
- updateStage()
- set the castNum of sprite 29 to 173
- set mystore to the text of cast "storeLocation"
- puppetSound("blip")
- set DFILE to "STORE.TXT"
- set writeObject to FileIO(mnew, "write", the pathName & DFILE)
- set theText to mystore
- writeObject(mWriteString, theText)
- writeObject(mdispose)
- quit()
- end if
- end
-
- on mouseDown
- if (word 1 of the text of cast "storelocation" <> "no") and (word 1 of the text of cast "storelocation" <> "rollover") then
- set x to the locH of sprite 33
- set y to the locV of sprite 33
- set Xnew to x + 1
- set Ynew to y + 1
- set the locH of sprite 33 to Xnew
- set the locV of sprite 33 to Ynew
- set the castNum of sprite 29 to 174
- set the ink of sprite 31 to 39
- set the ink of sprite 32 to 39
- updateStage()
- else
- set the ink of sprite 31 to 39
- puppetSound("blip")
- updateStage()
- end if
- end
-